home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8542 / 8542.xpi / chrome / lastpass.jar / content / login.xul < prev    next >
Extensible Markup Language  |  2010-02-14  |  3KB  |  74 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  3. <!DOCTYPE dialog SYSTEM "chrome://lastpass/locale/lastpass.dtd">
  4.  
  5. <dialog id="LPLogin"
  6.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  7.         buttons="accept,cancel"
  8.         ondialogaccept="return LP.lplogin_accept_click(document,window);"
  9.         ondialogcancel="return LP.lplogin_cancel_click();"
  10.         onload="LP.lplogin_window_load(document,window);">
  11.     
  12.     <script type="application/x-javascript" src="chrome://lastpass/content/getlp.js" />
  13.     
  14.     <vbox align="center">
  15.         <image src="chrome://lastpass/skin/icon.png" width="225" height="36" />
  16.     </vbox>
  17.     <spacer height="5"/>
  18.     
  19.     <vbox align="center" id="pwreprompt">
  20.         <spacer height="15"/>
  21.         <description width="225" id="repromptdesc"></description>
  22.         <spacer height="15"/>
  23.     </vbox>
  24.     
  25.     <vbox flex="1">
  26.         <label control="lpusername" id="usernamelabel"/>
  27.         <hbox align="center">
  28.             <menulist id="lpusername" editable="true" width="200" onchange='LP.populate_password(document);'>
  29.                 <menupopup id="lpusernamepopup" />
  30.             </menulist>
  31.             <vbox>
  32.                 <image id="lpdelete" src="chrome://lastpass/skin/x3.gif" width="16" height="16" onclick="LP.lplogin_delete_user(document);" />
  33.             </vbox>
  34.         </hbox>
  35.         
  36.         
  37.         <spacer height="5"/>
  38.         <label control="lppassword" id="passwordlabel"/>
  39.         <textbox id="lppassword" type="password" onkeypress="LP.lplogin_checkcapslock(document,window,event);"/>
  40.         
  41.         <spacer height="1"/>
  42.         <label id="capslocklabel"/>
  43.         
  44.         <spacer height="5"/>
  45.         <checkbox id="lprememberusername" oncommand="LP.lplogin_fix_fields(document);" />
  46.         <checkbox id="lprememberpassword" oncommand="LP.lplogin_confirm_remember_password(document, window);" />
  47.         <checkbox id="lpshowhomepageafterlogin"/>
  48.         <checkbox id="disableffpw"/>
  49.         
  50.         <spacer height="5"/>
  51.         <hbox flex="1">
  52.             <label id='forgetlink' class="text-link" onclick="LP.lpbaseopen('forgot.php'); window.close();"/>
  53.         </hbox>
  54.         <hbox flex="1">
  55.             <label id='screenkeyboard' class="text-link" onclick="LP.lpbaseopen('?sk=1'); window.close();"/>
  56.             <label id='createlink' class="text-link" onclick="window.close();LP.OpenCreateAccount()"/>
  57.         </hbox>
  58.         
  59.         <vbox id="lpreprompttimerow" hidden="true">
  60.             <spacer height="15"/>
  61.             <hbox>
  62.                 <spacer flex="3"/>
  63.                 <checkbox id="lpreprompttimecheck" />
  64.                 <menulist id="lpreprompttime" editable="false" oncommand='LP.setpromptcheck(document);'>
  65.                     <menupopup id="lpreprompttimepopup" />
  66.                 </menulist>
  67.             </hbox>
  68.         </vbox>
  69.         <spacer height="5"/>
  70.         
  71.     </vbox>
  72.     
  73. </dialog>
  74.